home *** CD-ROM | disk | FTP | other *** search
/ HyperLib 1997 Winter - Disc 1 / HYPERLIB-1997-Winter-CD1.ISO.7z / HYPERLIB-1997-Winter-CD1.ISO / オンラインウェア / COM / Batch FTP 2.50.sit / Batch FTP 2.50 / Progress Bar / Progress Bar ReadMe < prev   
Text File  |  1993-11-11  |  2KB  |  57 lines

  1. Progress Bar
  2. version 1.0.1  11-Nov-93
  3.  
  4. Description:
  5. Progress Bar displays a Finder-like progress bar that is controlled via Apple Events. It requires System 7 or later.
  6.  
  7. Sample AppleScript:
  8.  
  9. tell application "Progress Bar"
  10.    make new window with properties {Name: "Counting", Position: {100, 50}}
  11.    tell first progress bar of first window
  12.       set caption to "Numbers remaining:"
  13.       set minimum value to 0
  14.       set maximum value to 25
  15.       copy 0 to x
  16.       repeat while x イ 25
  17.          set current value to x
  18.          set subcaption to 25 - x
  19.          copy x + 1 to x
  20.       end repeat
  21.    end tell
  22.    quit
  23. end tell
  24.  
  25. Distribution:
  26. Progress Bar is copyrighted, but free, commonly called Freeware. The author retains all rights to the program, but specifically allows redistribution via the following channels:
  27.  
  28. (1) The disk associated with the book "Tao of AppleScript" by BMUG
  29. (2) Non-commercial bulletin board services
  30. (3) The following commercial BBS's: America Online, CompuServe, AppleLink
  31. (4) Internet archives and file servers
  32. (5) Disk libraries of non-profit organizations
  33. (6) Free exchange between individuals
  34.  
  35. In all cases, this ReadMe file must accompany the program.
  36.  
  37. For-profit companies that sell software programs must receive explicit written permission from the author before distributing the program.
  38.  
  39. Credits:
  40. Written by: Gregory H. Dow
  41. Icons by: Chris Holmes
  42. Useful ideas by: Derrick Schneider and Hans Hansen
  43.  
  44. ゥ 1993 Gregory H. Dow. All rights reserved.
  45.  
  46. Send comments to:
  47. Gregory H. Dow
  48. 1678 Shattuck Ave #302
  49. Berkeley, CA  94709-1631
  50.  
  51. America Online: GHD
  52. Internet: ghd@aol.com
  53.  
  54. ・ Version History
  55. 1.0         11-Jun-93     Ships with "The Tao of AppleScript" book by BMUG
  56. 1.0.1        11-Nov-93     Removed debugging stuff. Application is 12K smaller.
  57.